home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / enqr_25.zip / enq-test.bat < prev    next >
DOS Batch File  |  1994-05-18  |  288b  |  23 lines

  1. echo off
  2.  
  3. rem use to test the effects of options...
  4.  
  5. enquire %1 %2 %3 %4 %5 %6 %7 %8 %9 "\nDoes this thing work? "
  6.  
  7. if errorlevel 2 goto yes
  8. if errorlevel 1 goto error
  9.  
  10. :no
  11. echo Exitlevel 0
  12. goto exit
  13.  
  14. :yes
  15. echo Exitlevel 2
  16. goto exit
  17.  
  18. :error
  19. echo Exitlevel 1
  20.  
  21. :exit
  22.  
  23.